Problem in List<double[,]>

Posted by Newbie on Stack Overflow See other posts from Stack Overflow or by Newbie
Published on 2010-04-27T08:39:53Z Indexed on 2010/04/27 9:03 UTC
Read the original article Hit count: 211

Filed under:
|

What is wrong with this (in C# 3.0):

List<double> x = new List<double> { 0.0330, -0.6463, 0.1226, -0.3304, 0.4764, -0.4159, 0.4209, -0.4070, -0.2090, -0.2718, -0.2240, -0.1275, -0.0810, 0.0349, -0.5067, 0.0094, -0.4404, -0.1212 };
List<double> y = new List<double> { 0.4807, -3.7070, -4.5582, -11.2126, -0.7733, 3.7269, 2.7672, 8.3333, 4.7023,0,0,0,0,0,0,0,0,0 };

List<double[,]> z = new List<double[,]>{x,y}; // this line

The error produced is:

Error: Argument '1': cannot convert from 'System.Collections.Generic.List<double>' to 'double[*,*]' 

Help needed.

© Stack Overflow or respective owner

Related posts about c#3.0

Related posts about c#